home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 14524 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  825 b 

  1. From: Jim_Marshall@msn.com (Jim Marshall)
  2. Subject: Re: VC++ 4.0 memory allocation slower than in 2.x!!!
  3. Date: 31 Mar 96 05:14:58 -0800
  4. References: <alanDozpsy.Kn6@netcom.com> <4jgde4$kgo_001@chem.uva.nl> <315C86C3.57BE@sdt.com> <alanDp1uEB.JHs@netcom.com>
  5. Message-ID: <00001a81+0000b0ad@msn.com>
  6. Path: news.msn.com!msn.com
  7. Newsgroups: comp.lang.c++
  8. Organization: The Microsoft Network (msn.com)
  9.  
  10. The reason they change it was because there is a major problem with 
  11. the old scheme.  It fragments memory too much, and hence winds up 
  12. allocating to much (if your app does enough new/mallocs you could 
  13. cause even NT to fail with insf. memory).  This was hyped quite a bit 
  14. in the press (the article is at my office).  Personally for the apps 
  15. I write the new scheme is better (if I need speed I use a third party 
  16. heap manager)
  17.